suppressPackageStartupMessages(library(tidyverse))
devtools::load_all('~/Google Drive/My Drive/Scripts/R_packages/myUtilities/')
## ℹ Loading myUtilities

Settings

theme_set(
  theme_classic(base_size = 7) +
    theme(legend.position = 'bottom')
)

wd <- "~/Google Drive/My Drive/Analysis/METTL2A/"

figdir <- paste0(wd, 'Figures/DRS_m3C_RNAs/Stoichiometry_volcano/')
tabledir <- paste0(wd, 'Tables/DRS_m3C_RNAs/Stoichiometry_at_eachsite_eachsample_summary/')

Functions

paste_wd <- function(path) {
  paste0(wd, path)
}

read_stoichiometry_tsv <- function(path) {
  
  read_tsv(path) |> 
    pivot_longer(cols = -c(mu, sigma), names_to = 'sample', values_to = 'value') |> 
    mutate(mod = ifelse(mu == min(mu), 'mod', 'not')) |> 
    filter(mod == 'mod') |> 
    mutate(basename = basename(path)) |> 
    separate(basename, into = c('gene_name', 'transcript_id', 'position', NA), sep = '_')
  
}

Read data

sample_info <- 
  tibble(
    sample = seq(1,9) |> as.character(),
    si = rep(c('D', 'G', 'I'), each = 3),
    type = rep(c('control', 'KD', 'KD'), each = 3)
  )
sample_info
## # A tibble: 9 × 3
##   sample si    type   
##   <chr>  <chr> <chr>  
## 1 1      D     control
## 2 2      D     control
## 3 3      D     control
## 4 4      G     KD     
## 5 5      G     KD     
## 6 6      G     KD     
## 7 7      I     KD     
## 8 8      I     KD     
## 9 9      I     KD
stoichiometry_m3C_sites <- 
  fs::dir_ls(
    'Tables/DRS_m3C_RNAs/Stoichiometry_at_eachsite_eachsample/' |> paste_wd()
  ) |> 
  map(read_stoichiometry_tsv) |> 
  reduce(bind_rows) |> 
  left_join(sample_info)
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Rows: 2 Columns: 11
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: "\t"
## dbl (11): mu, sigma, 7, 8, 9, 4, 5, 6, 1, 2, 3
## 
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
## Joining with `by = join_by(sample)`
stoichiometry_m3C_sites
## # A tibble: 4,401 × 10
##       mu sigma sample value mod   gene_name transcript_id   position si    type 
##    <dbl> <dbl> <chr>  <dbl> <chr> <chr>     <chr>           <chr>    <chr> <chr>
##  1  73.1 0.787 7      0.730 mod   ARPC1B    ENST0000064610… 134      I     KD   
##  2  73.1 0.787 8      0.807 mod   ARPC1B    ENST0000064610… 134      I     KD   
##  3  73.1 0.787 9      0.750 mod   ARPC1B    ENST0000064610… 134      I     KD   
##  4  73.1 0.787 4      0.637 mod   ARPC1B    ENST0000064610… 134      G     KD   
##  5  73.1 0.787 5      0.814 mod   ARPC1B    ENST0000064610… 134      G     KD   
##  6  73.1 0.787 6      0.727 mod   ARPC1B    ENST0000064610… 134      G     KD   
##  7  73.1 0.787 1      0.812 mod   ARPC1B    ENST0000064610… 134      D     cont…
##  8  73.1 0.787 2      0.822 mod   ARPC1B    ENST0000064610… 134      D     cont…
##  9  73.1 0.787 3      0.784 mod   ARPC1B    ENST0000064610… 134      D     cont…
## 10  71.5 0.709 7      0.936 mod   ARPC1B    ENST0000064610… 1364     I     KD   
## # ℹ 4,391 more rows
stoichiometry_m3C_sites_FC_diff <- 
  stoichiometry_m3C_sites |> 
  group_by(gene_name, transcript_id, position, mu, sigma, type) |> 
  reframe(mean_value = mean(value)) |> 
  pivot_wider(
    id_cols = gene_name:sigma, 
    names_from = type, names_prefix = 'm3C_',
    values_from = mean_value
  ) |> 
  mutate(
    log2FC = log2(m3C_KD / m3C_control),
    diff   = m3C_KD - m3C_control
  )
stoichiometry_m3C_sites_FC_diff
## # A tibble: 489 × 9
##    gene_name transcript_id     position    mu sigma m3C_KD m3C_control   log2FC
##    <chr>     <chr>             <chr>    <dbl> <dbl>  <dbl>       <dbl>    <dbl>
##  1 ARPC1B    ENST00000646101.2 134       73.1 0.787 0.744       0.806  -0.115  
##  2 ARPC1B    ENST00000646101.2 1364      71.5 0.709 0.932       0.948  -0.0241 
##  3 ARPC1B    ENST00000646101.2 245       62.8 0.935 0.689       0.731  -0.0854 
##  4 ARPC1B    ENST00000646101.2 246       62.2 0.694 0.903       0.919  -0.0254 
##  5 ARPC1B    ENST00000646101.2 359       65.3 0.804 0.691       0.740  -0.0996 
##  6 ARPC1B    ENST00000646101.2 378       62.0 0.765 0.749       0.790  -0.0764 
##  7 ARPC1B    ENST00000646101.2 379       63.7 0.636 0.121       0.168  -0.472  
##  8 ARPC1B    ENST00000646101.2 424       68.7 0.271 0.0185      0.0351 -0.927  
##  9 ARPC1B    ENST00000646101.2 490       69.9 0.516 0.377       0.376   0.00465
## 10 ARPC1B    ENST00000646101.2 517       65.3 1.18  0.854       0.890  -0.0591 
## # ℹ 479 more rows
## # ℹ 1 more variable: diff <dbl>

Statistical Test

T test

By type

stoichiometry_m3C_sites_ttest_type <- 
  stoichiometry_m3C_sites |> 
  group_by(gene_name, transcript_id, position, mu, sigma) |> 
  rstatix::t_test(value ~ type)
stoichiometry_m3C_sites_ttest_type |> 
  export_tsv(outdir = tabledir, compression = 'gz')
## 
## Exported to: ~/Google Drive/My Drive/Analysis/METTL2A/Tables/DRS_m3C_RNAs/Stoichiometry_at_eachsite_eachsample_summary/stoichiometry_m3C_sites_ttest_type_2025-06-27.tsv.gz
## # A tibble: 489 × 13
##       mu sigma gene_name transcript_id  position .y.   group1 group2    n1    n2
##  * <dbl> <dbl> <chr>     <chr>          <chr>    <chr> <chr>  <chr>  <int> <int>
##  1  73.1 0.787 ARPC1B    ENST000006461… 134      value contr… KD         3     6
##  2  71.5 0.709 ARPC1B    ENST000006461… 1364     value contr… KD         3     6
##  3  62.8 0.935 ARPC1B    ENST000006461… 245      value contr… KD         3     6
##  4  62.2 0.694 ARPC1B    ENST000006461… 246      value contr… KD         3     6
##  5  65.3 0.804 ARPC1B    ENST000006461… 359      value contr… KD         3     6
##  6  62.0 0.765 ARPC1B    ENST000006461… 378      value contr… KD         3     6
##  7  63.7 0.636 ARPC1B    ENST000006461… 379      value contr… KD         3     6
##  8  68.7 0.271 ARPC1B    ENST000006461… 424      value contr… KD         3     6
##  9  69.9 0.516 ARPC1B    ENST000006461… 490      value contr… KD         3     6
## 10  65.3 1.18  ARPC1B    ENST000006461… 517      value contr… KD         3     6
## # ℹ 479 more rows
## # ℹ 3 more variables: statistic <dbl>, df <dbl>, p <dbl>

By siRNA

stoichiometry_m3C_sites_ttest_si <- 
  stoichiometry_m3C_sites |> 
  group_by(gene_name, transcript_id, position, mu, sigma) |> 
  rstatix::t_test(value ~ si, ref = 'D')
stoichiometry_m3C_sites_ttest_si |> 
  export_tsv(outdir = tabledir, compression = 'gz')
## 
## Exported to: ~/Google Drive/My Drive/Analysis/METTL2A/Tables/DRS_m3C_RNAs/Stoichiometry_at_eachsite_eachsample_summary/stoichiometry_m3C_sites_ttest_si_2025-06-27.tsv.gz
## # A tibble: 978 × 15
##       mu sigma gene_name transcript_id  position .y.   group1 group2    n1    n2
##  * <dbl> <dbl> <chr>     <chr>          <chr>    <chr> <chr>  <chr>  <int> <int>
##  1  73.1 0.787 ARPC1B    ENST000006461… 134      value D      G          3     3
##  2  73.1 0.787 ARPC1B    ENST000006461… 134      value D      I          3     3
##  3  71.5 0.709 ARPC1B    ENST000006461… 1364     value D      G          3     3
##  4  71.5 0.709 ARPC1B    ENST000006461… 1364     value D      I          3     3
##  5  62.8 0.935 ARPC1B    ENST000006461… 245      value D      G          3     3
##  6  62.8 0.935 ARPC1B    ENST000006461… 245      value D      I          3     3
##  7  62.2 0.694 ARPC1B    ENST000006461… 246      value D      G          3     3
##  8  62.2 0.694 ARPC1B    ENST000006461… 246      value D      I          3     3
##  9  65.3 0.804 ARPC1B    ENST000006461… 359      value D      G          3     3
## 10  65.3 0.804 ARPC1B    ENST000006461… 359      value D      I          3     3
## # ℹ 968 more rows
## # ℹ 5 more variables: statistic <dbl>, df <dbl>, p <dbl>, p.adj <dbl>,
## #   p.adj.signif <chr>
stoichiometry_m3C_sites_ttest_type |> 
  group_by(p < .05) |> 
  reframe(n = n())
## # A tibble: 2 × 2
##   `p < 0.05`     n
##   <lgl>      <int>
## 1 FALSE        342
## 2 TRUE         147
stoichiometry_m3C_sites_ttest_si |> 
  group_by(p < .05, group2) |> 
  reframe(n = n())
## # A tibble: 4 × 3
##   `p < 0.05` group2     n
##   <lgl>      <chr>  <int>
## 1 FALSE      G        460
## 2 FALSE      I        329
## 3 TRUE       G         29
## 4 TRUE       I        160

Wilcox test

By type

stoichiometry_m3C_sites_wilcoxtest_type <- 
  stoichiometry_m3C_sites |> 
  group_by(gene_name, transcript_id, position, mu, sigma) |> 
  rstatix::wilcox_test(value ~ type)
stoichiometry_m3C_sites_wilcoxtest_type
## # A tibble: 489 × 12
##       mu sigma gene_name transcript_id  position .y.   group1 group2    n1    n2
##  * <dbl> <dbl> <chr>     <chr>          <chr>    <chr> <chr>  <chr>  <int> <int>
##  1  73.1 0.787 ARPC1B    ENST000006461… 134      value contr… KD         3     6
##  2  71.5 0.709 ARPC1B    ENST000006461… 1364     value contr… KD         3     6
##  3  62.8 0.935 ARPC1B    ENST000006461… 245      value contr… KD         3     6
##  4  62.2 0.694 ARPC1B    ENST000006461… 246      value contr… KD         3     6
##  5  65.3 0.804 ARPC1B    ENST000006461… 359      value contr… KD         3     6
##  6  62.0 0.765 ARPC1B    ENST000006461… 378      value contr… KD         3     6
##  7  63.7 0.636 ARPC1B    ENST000006461… 379      value contr… KD         3     6
##  8  68.7 0.271 ARPC1B    ENST000006461… 424      value contr… KD         3     6
##  9  69.9 0.516 ARPC1B    ENST000006461… 490      value contr… KD         3     6
## 10  65.3 1.18  ARPC1B    ENST000006461… 517      value contr… KD         3     6
## # ℹ 479 more rows
## # ℹ 2 more variables: statistic <dbl>, p <dbl>
stoichiometry_m3C_sites_wilcoxtest_si <- 
  stoichiometry_m3C_sites |> 
  group_by(gene_name, transcript_id, position, mu, sigma) |> 
  rstatix::wilcox_test(value ~ si, ref = 'D')
stoichiometry_m3C_sites_wilcoxtest_si
## # A tibble: 978 × 14
##       mu sigma gene_name transcript_id  position .y.   group1 group2    n1    n2
##  * <dbl> <dbl> <chr>     <chr>          <chr>    <chr> <chr>  <chr>  <int> <int>
##  1  73.1 0.787 ARPC1B    ENST000006461… 134      value D      G          3     3
##  2  73.1 0.787 ARPC1B    ENST000006461… 134      value D      I          3     3
##  3  71.5 0.709 ARPC1B    ENST000006461… 1364     value D      G          3     3
##  4  71.5 0.709 ARPC1B    ENST000006461… 1364     value D      I          3     3
##  5  62.8 0.935 ARPC1B    ENST000006461… 245      value D      G          3     3
##  6  62.8 0.935 ARPC1B    ENST000006461… 245      value D      I          3     3
##  7  62.2 0.694 ARPC1B    ENST000006461… 246      value D      G          3     3
##  8  62.2 0.694 ARPC1B    ENST000006461… 246      value D      I          3     3
##  9  65.3 0.804 ARPC1B    ENST000006461… 359      value D      G          3     3
## 10  65.3 0.804 ARPC1B    ENST000006461… 359      value D      I          3     3
## # ℹ 968 more rows
## # ℹ 4 more variables: statistic <dbl>, p <dbl>, p.adj <dbl>, p.adj.signif <chr>

Check number

stoichiometry_m3C_sites_wilcoxtest_type |> 
  group_by(p < .05) |> 
  reframe(n = n())
## # A tibble: 2 × 2
##   `p < 0.05`     n
##   <lgl>      <int>
## 1 FALSE        417
## 2 TRUE          72
stoichiometry_m3C_sites_wilcoxtest_si |> 
  group_by(p < .05, group2) |> 
  reframe(n = n())
## # A tibble: 2 × 3
##   `p < 0.05` group2     n
##   <lgl>      <chr>  <int>
## 1 FALSE      G        489
## 2 FALSE      I        489

Merge fold change and pvalue

stoichiometry_m3C_sites_FC_diff_pval <- 
  stoichiometry_m3C_sites_FC_diff |> 
  left_join(
    stoichiometry_m3C_sites_ttest_type |> select(mu:position, p)
  ) |> 
  mutate(
    minuslog10p = -log10(p),
    label = ifelse(p < .05, paste0(gene_name, '|', position), ''),
    label_s100a4 = ifelse(grepl('S100A4', gene_name), paste0(gene_name, '|', position), NA)
  )
## Joining with `by = join_by(gene_name, transcript_id, position, mu, sigma)`
stoichiometry_m3C_sites_FC_diff_pval |> 
  export_tsv(outdir = tabledir, compression = 'gz')
## 
## Exported to: ~/Google Drive/My Drive/Analysis/METTL2A/Tables/DRS_m3C_RNAs/Stoichiometry_at_eachsite_eachsample_summary/stoichiometry_m3C_sites_FC_diff_pval_2025-06-27.tsv.gz
## # A tibble: 489 × 13
##    gene_name transcript_id     position    mu sigma m3C_KD m3C_control   log2FC
##    <chr>     <chr>             <chr>    <dbl> <dbl>  <dbl>       <dbl>    <dbl>
##  1 ARPC1B    ENST00000646101.2 134       73.1 0.787 0.744       0.806  -0.115  
##  2 ARPC1B    ENST00000646101.2 1364      71.5 0.709 0.932       0.948  -0.0241 
##  3 ARPC1B    ENST00000646101.2 245       62.8 0.935 0.689       0.731  -0.0854 
##  4 ARPC1B    ENST00000646101.2 246       62.2 0.694 0.903       0.919  -0.0254 
##  5 ARPC1B    ENST00000646101.2 359       65.3 0.804 0.691       0.740  -0.0996 
##  6 ARPC1B    ENST00000646101.2 378       62.0 0.765 0.749       0.790  -0.0764 
##  7 ARPC1B    ENST00000646101.2 379       63.7 0.636 0.121       0.168  -0.472  
##  8 ARPC1B    ENST00000646101.2 424       68.7 0.271 0.0185      0.0351 -0.927  
##  9 ARPC1B    ENST00000646101.2 490       69.9 0.516 0.377       0.376   0.00465
## 10 ARPC1B    ENST00000646101.2 517       65.3 1.18  0.854       0.890  -0.0591 
## # ℹ 479 more rows
## # ℹ 5 more variables: diff <dbl>, p <dbl>, minuslog10p <dbl>, label <chr>,
## #   label_s100a4 <chr>
stoichiometry_m3C_sites_FC_diff_pval |> 
  group_by(p < .05, sign(log2FC)) |> 
  reframe(n = n())
## # A tibble: 4 × 3
##   `p < 0.05` `sign(log2FC)`     n
##   <lgl>               <dbl> <int>
## 1 FALSE                  -1   327
## 2 FALSE                   1    15
## 3 TRUE                   -1   145
## 4 TRUE                    1     2

Violin plot

Log2FC

Normal

volcano_log2FC_log10pval <- 
  stoichiometry_m3C_sites_FC_diff_pval |> 
  ggplot(aes(
    x = log2FC, y = minuslog10p, 
  )) +
  geom_point(size = .2) +
  scale_x_continuous(limits = c(-2, 2)) +
  geom_vline(xintercept = c(0), color = 'gray50') +
  geom_hline(yintercept = c(0, -log10(.05)), color = 'gray50') 
volcano_log2FC_log10pval |> 
  ggsave_pdf(outdir = figdir, width = 3.2, height = 3.2)

With label positions with p < .05

volcano_log2FC_log10pval_siglabel <- 
  stoichiometry_m3C_sites_FC_diff_pval |> 
  ggplot(aes(
    x = log2FC, y = -log10(p), 
    label = label,
  )) +
  ggrepel::geom_text_repel(size = 7 /.pt, max.overlaps = 20, min.segment.length = .1) +
  geom_point(size = .2) +
  #geom_hex(bins = 100) +
  scale_x_continuous(limits = c(-2, 2)) +
  geom_vline(xintercept = c(0, -log2(1.2)), color = 'gray50') +
  geom_hline(yintercept = c(0, -log10(.05)), color = 'gray50') 
volcano_log2FC_log10pval_siglabel |> 
  ggsave_pdf(outdir = figdir, width = 9, height = 9)
## Warning: ggrepel: 115 unlabeled data points (too many overlaps). Consider
## increasing max.overlaps
## Warning: ggrepel: 107 unlabeled data points (too many overlaps). Consider
## increasing max.overlaps

Label S100A4

volcano_log2FC_log10pval_s100a4label <- 
  stoichiometry_m3C_sites_FC_diff_pval |> 
  ggplot(aes(
    x = log2FC, y = -log10(p), 
    label = label_s100a4,
  )) +
  ggrepel::geom_text_repel(size = 7 /.pt) +
  geom_point(size = .2) +
#  geom_hex(bins = 100) +
  scale_x_continuous(limits = c(-2, 2)) +
  geom_vline(xintercept = c(0, -log2(1.2)), color = 'gray50') +
  geom_hline(yintercept = c(0, -log10(.05)), color = 'gray50') 
volcano_log2FC_log10pval_s100a4label |> 
  ggsave_pdf(outdir = figdir, width = 9, height = 9)
## Warning: Removed 483 rows containing missing values or values outside the scale range
## (`geom_text_repel()`).
## Removed 483 rows containing missing values or values outside the scale range
## (`geom_text_repel()`).

Diff

stoichiometry_m3C_sites_FC_diff_pval |> 
  ggplot(aes(
    x = diff, y = -log10(p), 
    label = label,
  )) +
  ggrepel::geom_text_repel() +
  geom_point() +
  geom_vline(xintercept = c(0), color = 'gray50') +
  geom_hline(yintercept = c(0, -log10(.05)), color = 'gray50')
## Warning: ggrepel: 126 unlabeled data points (too many overlaps). Consider
## increasing max.overlaps

#" # Check difference between chrM and others

ecdf_log2FC_MTorNot <- 
  stoichiometry_m3C_sites_FC_diff_pval |> 
  ggplot(aes(
    x = log2FC, color = grepl('MT-', gene_name)
  )) +
  stat_ecdf()
ecdf_log2FC_MTorNot |> 
  ggsave_pdf(outdir = figdir, width = 4, height = 4)

stoichiometry_m3C_sites_FC_diff_pval |> 
  ggplot(aes(
    x = log2FC, y = -log10(p), 
  )) +
  #geom_point() +
  geom_hex(bins = 100) +
  scale_x_continuous(limits = c(-2, 2)) +
  scale_fill_viridis_c(trans = 'log10') +
  geom_vline(xintercept = c(0, -log2(1.2)), color = 'gray50') +
  geom_hline(yintercept = c(0, -log10(.05)), color = 'gray50')  +
  facet_wrap( ~ grepl('MT-', gene_name), ncol = 1)